Remote `unused` lint
authorBrian Koropoff <bkoropoff@gmail.com>
Sun, 5 Oct 2014 23:06:50 +0000 (16:06 -0700)
committerBrian Koropoff <bkoropoff@gmail.com>
Sun, 5 Oct 2014 23:06:50 +0000 (16:06 -0700)
It's causing tons of not-very-helpful errors that are breaking the build.

src/cargo/lib.rs

index f4d11bab1c0ace147455ea0d03e1e6be365e9813..87a495aff6a4b522f337a53628af2605c4bf3589 100644 (file)
@@ -3,7 +3,7 @@
 
 #![feature(macro_rules, phase)]
 #![feature(default_type_params)]
-#![deny(bad_style, unused)]
+#![deny(bad_style)]
 
 extern crate libc;
 extern crate regex;